Package it.czerwinski.kotlin.collections

Contains iterators used by the utility types.

Types

EmptyIterator
Link copied to clipboard
common
object EmptyIterator : Iterator<Nothing>
Iterator producing no values.
SingletonIterator
Link copied to clipboard
common
class SingletonIterator<T>(element: T) : Iterator<T>
Iterator producing a single element.